From 3e61a5e05c1efa621f199ca8ad4e9b9c69eac8e5 Mon Sep 17 00:00:00 2001 From: Alexandru Ardelean Date: Sat, 8 Nov 2025 12:37:00 +0200 Subject: [PATCH] python3: add libatomic as dependency For some architectures (like mips24) this solves some build errors. Signed-off-by: Alexandru Ardelean --- lang/python/python3/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lang/python/python3/Makefile b/lang/python/python3/Makefile index 136a17773c..ff8f8b19c3 100644 --- a/lang/python/python3/Makefile +++ b/lang/python/python3/Makefile @@ -11,7 +11,7 @@ include $(TOPDIR)/rules.mk include ../python3-version.mk PKG_NAME:=python3 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_VERSION:=$(PYTHON3_VERSION).$(PYTHON3_VERSION_MICRO) PKG_SOURCE:=Python-$(PKG_VERSION).tar.xz @@ -70,7 +70,7 @@ endef define Package/libpython3 $(call Package/python3/Default) TITLE+= core library - DEPENDS:=+libpthread + DEPENDS:=+libpthread +libatomic ABI_VERSION:=$(PYTHON3_VERSION) endef -- 2.30.2